Skip to content

Conversation

@nevo-david
Copy link
Contributor

@nevo-david nevo-david commented Dec 4, 2024

  • feat: instagram changes
  • feat: instagram stories, add collaborators, infrastructure for settings in validation

Summary by CodeRabbit

  • New Features

    • Introduced the InstagramCollaborators component for managing Instagram post types and collaborators.
    • Added the InstagramCollaboratorsTags component for tagging collaborators with a maximum limit.
    • Enhanced the Instagram posting logic to differentiate between post types and manage collaborators effectively.
    • Added a new music search feature in the Instagram provider.
  • Improvements

    • Improved validation logic for scheduling posts, ensuring user intent before deletion.
    • Enhanced state management for selected integrations in the editing component.
  • Bug Fixes

    • Fixed event handling in the postNow function to prevent default behavior.

@vercel
Copy link

vercel bot commented Dec 4, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gitroom ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 4, 2024 0:30am
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
postiz ⬜️ Ignored (Inspect) Visit Preview Dec 4, 2024 0:30am

@coderabbitai
Copy link

coderabbitai bot commented Dec 4, 2024

Walkthrough

The changes include modifications to several components and files related to post management within a frontend application and a NestJS backend. Key updates involve enhancing the AddEditModal component with improved validation logic and state management, the introduction of new components for managing Instagram collaborators, and the addition of data transfer objects (DTOs) for Instagram integration. The InstagramProvider class has been updated to handle different post types and includes a new method for music search. Additionally, error handling in the fetch method of the SocialAbstract class has been refined.

Changes

File Path Change Summary
apps/frontend/src/components/launches/add.edit.model.tsx Updated schedule function to accept an additional settings parameter; modified postNow to handle event propagation; added async confirmation dialog in deletePost; refined useEffect for selected integrations; updated canSendForPublication checks.
apps/frontend/src/components/launches/helpers/use.values.ts Updated checkValidity function to accept an additional settings parameter.
apps/frontend/src/components/launches/providers/high.order.provider.tsx Modified withProvider function to include a new generic type parameter T for settings.
apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx Introduced InstagramCollaborators component for managing Instagram post types and collaborators with validation logic based on selected post type.
apps/frontend/src/components/launches/providers/instagram/instagram.provider.tsx Deleted file; previously contained a provider component for Instagram media handling.
apps/frontend/src/components/launches/providers/instagram/instagram.tags.tsx Added InstagramCollaboratorsTags component for managing Instagram collaborator tags with internal state management.
apps/frontend/src/components/launches/providers/show.all.providers.tsx Updated import path for InstagramProvider from instagram.provider to instagram.collaborators.
libraries/nestjs-libraries/src/dtos/posts/providers-settings/instagram.dto.ts Introduced Collaborators and InstagramDto classes for data transfer objects, with validation decorators for properties.
libraries/nestjs-libraries/src/integrations/social.abstract.ts Reformatted fetch method for readability; enhanced error handling for unauthorized responses.
libraries/nestjs-libraries/src/integrations/social/instagram.provider.ts Updated post method to accept PostDetails<InstagramDto>; added logic for handling post types; introduced music method for searching music.

Poem

In the garden of code, changes bloom bright,
With Instagram tags and posts taking flight.
Collaborators gather, their roles now defined,
In the world of the web, new features aligned.
So hop with delight, let the updates unfurl,
For every small change makes a big impact swirl! 🐇✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

},
];
const InstagramCollaborators: FC<{ values?: any }> = (props) => {
const { watch, register, formState, control } = useSettings();

Check warning

Code scanning / ESLint

Disallow unused variables Warning

'formState' is assigned a value but never used.
},
];
const InstagramCollaborators: FC<{ values?: any }> = (props) => {
const { watch, register, formState, control } = useSettings();

Check warning

Code scanning / ESLint

Disallow unused variables Warning

'control' is assigned a value but never used.
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]

Check warning

Code scanning / ESLint

verifies the list of dependencies for Hooks like useEffect and similar Warning

React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]

Check warning

Code scanning / ESLint

verifies the list of dependencies for Hooks like useEffect and similar Warning

React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.
if (settings) {
setTagValue(settings);
}
}, []);

Check warning

Code scanning / ESLint

verifies the list of dependencies for Hooks like useEffect and similar Warning

React Hook useEffect has missing dependencies: 'getValues' and 'props.name'. Either include them or remove the dependency array.
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 8

🧹 Outside diff range and nitpick comments (4)
apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx (1)

19-19: Remove unused variables 'formState' and 'control'

Variables formState and control are assigned but never used. Removing them can improve code readability and eliminate unnecessary code.

Apply this diff to remove the unused variables:

-  const { watch, register, formState, control } = useSettings();
+  const { watch, register } = useSettings();
🧰 Tools
🪛 GitHub Check: ESLint

[warning] 19-19: Disallow unused variables
'formState' is assigned a value but never used.


[warning] 19-19: Disallow unused variables
'control' is assigned a value but never used.

libraries/nestjs-libraries/src/integrations/social/instagram.provider.ts (2)

210-210: Remove debug console.log statements.

Debug console.log statements should not be committed to production code. Consider using a proper logging system if logging is needed.

- console.log('in progress');
- console.log('in progress1');
- console.log(collaborators);
- console.log('in progress2');
- console.log('in progress3');

Also applies to: 232-232, 241-241, 250-250, 262-262


234-239: Consider extracting collaborators logic to a separate method.

The collaborators logic could be extracted to improve readability and reusability.

+ private getCollaboratorsParam(settings?: InstagramDto, isStory: boolean): string {
+   if (!settings?.collaborators?.length || isStory) {
+     return '';
+   }
+   return `&collaborators=${JSON.stringify(
+     settings.collaborators.map((p) => p.label)
+   )}`;
+ }

Then use it in the code:

- const collaborators =
-   firstPost?.settings?.collaborators?.length && !isStory
-     ? `&collaborators=${JSON.stringify(
-         firstPost?.settings?.collaborators.map((p) => p.label)
-       )}`
-     : ``;
+ const collaborators = this.getCollaboratorsParam(firstPost?.settings, isStory);
apps/frontend/src/components/launches/providers/high.order.provider.tsx (1)

71-80: LGTM! Consider adding JSDoc documentation.

The addition of generic type parameter T and settings parameter improves type safety. However, documentation would help explain the expected shape and usage of these parameters.

Add JSDoc documentation above the function:

+/**
+ * Higher-order component that provides social media post management functionality
+ * @template T - Type of settings object used for validation
+ * @param SettingsComponent - Optional component for rendering settings UI
+ * @param CustomPreviewComponent - Optional component for custom preview
+ * @param dto - Optional DTO for form validation
+ * @param checkValidity - Optional callback for validating posts with settings
+ * @param maximumCharacters - Optional maximum character limit
+ */
export const withProvider = function <T extends object>(
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 31ba8a7 and f9f5e6d.

📒 Files selected for processing (10)
  • apps/frontend/src/components/launches/add.edit.model.tsx (1 hunks)
  • apps/frontend/src/components/launches/helpers/use.values.ts (3 hunks)
  • apps/frontend/src/components/launches/providers/high.order.provider.tsx (1 hunks)
  • apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx (1 hunks)
  • apps/frontend/src/components/launches/providers/instagram/instagram.provider.tsx (0 hunks)
  • apps/frontend/src/components/launches/providers/instagram/instagram.tags.tsx (1 hunks)
  • apps/frontend/src/components/launches/providers/show.all.providers.tsx (1 hunks)
  • libraries/nestjs-libraries/src/dtos/posts/providers-settings/instagram.dto.ts (1 hunks)
  • libraries/nestjs-libraries/src/integrations/social.abstract.ts (2 hunks)
  • libraries/nestjs-libraries/src/integrations/social/instagram.provider.ts (5 hunks)
💤 Files with no reviewable changes (1)
  • apps/frontend/src/components/launches/providers/instagram/instagram.provider.tsx
🧰 Additional context used
🪛 GitHub Check: ESLint
apps/frontend/src/components/launches/providers/instagram/instagram.collaborators.tsx

[warning] 19-19: Disallow unused variables
'formState' is assigned a value but never used.


[warning] 19-19: Disallow unused variables
'control' is assigned a value but never used.

apps/frontend/src/components/launches/providers/instagram/instagram.tags.tsx

[warning] 22-22: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.


[warning] 34-34: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.


[warning] 42-42: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useEffect has missing dependencies: 'getValues' and 'props.name'. Either include them or remove the dependency array.

🔇 Additional comments (6)
apps/frontend/src/components/launches/add.edit.model.tsx (1)

279-280: Ensure correct handling of key.settings in validation

The addition of key.settings as a parameter enhances validation by incorporating specific settings. Verify that key.checkValidity correctly handles the settings parameter and that all implementations of checkValidity are updated accordingly.

libraries/nestjs-libraries/src/dtos/posts/providers-settings/instagram.dto.ts (1)

1-18: Well-defined DTO classes with appropriate validations

The Collaborators and InstagramDto classes are correctly defined with suitable validation decorators, ensuring data integrity and type safety.

libraries/nestjs-libraries/src/integrations/social.abstract.ts (1)

47-50: Review the enhanced error handling conditions

The updated condition in the fetch method refines error handling by excluding specific cases. Ensure that these additional checks for "Unsupported format" and '2207018' accurately capture the intended scenarios without affecting other error cases.

apps/frontend/src/components/launches/providers/show.all.providers.tsx (1)

10-10: LGTM! Import path updated correctly.

The import path update aligns with the new Instagram collaborators functionality.

apps/frontend/src/components/launches/providers/high.order.provider.tsx (2)

71-80: Verify integration points for settings validation.

The addition of the settings parameter to checkValidity requires verification of all integration points to ensure they properly pass settings objects.

Let's check the integration points:


71-80: Consider addressing type assertions and improving type safety.

The code contains @ts-ignore comments that could be replaced with proper type definitions. Additionally, verify that all consuming code properly types the settings parameter.

Let's check for usage patterns and potential type issues:

Comment on lines +62 to +64
.filter((f) => f.path.indexOf('mp4') > -1)
.flatMap((p) => p.path)
.map((p) => {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Correct the usage of flatMap and improve video file detection

The use of flatMap is unnecessary here since p.path is a string. It should be replaced with map. Additionally, detecting video files by checking if 'mp4' is in the path string is case-sensitive and may not cover all video formats. Consider using a regular expression to match video file extensions case-insensitively.

Apply this diff to correct the code:

-        .filter((f) => f.path.indexOf('mp4') > -1)
+        .filter((f) => /\.(mp4|mov|avi)$/i.test(f.path))
-        .flatMap((p) => p.path)
+        .map((p) => p.path)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
.filter((f) => f.path.indexOf('mp4') > -1)
.flatMap((p) => p.path)
.map((p) => {
.filter((f) => /\.(mp4|mov|avi)$/i.test(f.path))
.map((p) => p.path)
.map((p) => {

Comment on lines +16 to +23
const onDelete = useCallback(
(tagIndex: number) => {
const modify = tagValue.filter((_, i) => i !== tagIndex);
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Include missing dependencies in useCallback for onDelete

The onDelete function uses name and onChange, but they are not included in the dependency array of the useCallback hook. This omission may lead to stale references if name or onChange change. Include them in the dependency array to ensure consistency.

Apply this diff:

-    [tagValue]
+    [tagValue, name, onChange]
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const onDelete = useCallback(
(tagIndex: number) => {
const modify = tagValue.filter((_, i) => i !== tagIndex);
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]
);
const onDelete = useCallback(
(tagIndex: number) => {
const modify = tagValue.filter((_, i) => i !== tagIndex);
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue, name, onChange]
);
🧰 Tools
🪛 GitHub Check: ESLint

[warning] 22-22: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.

Comment on lines +25 to +35
const onAddition = useCallback(
(newTag: any) => {
if (tagValue.length >= 3) {
return;
}
const modify = [...tagValue, newTag];
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]
);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Include missing dependencies in useCallback for onAddition

The onAddition function uses name and onChange, but they are not included in the dependency array of the useCallback hook. This could cause issues if name or onChange update. Add them to the dependency array to maintain proper references.

Apply this diff:

-    [tagValue]
+    [tagValue, name, onChange]
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
const onAddition = useCallback(
(newTag: any) => {
if (tagValue.length >= 3) {
return;
}
const modify = [...tagValue, newTag];
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue]
);
const onAddition = useCallback(
(newTag: any) => {
if (tagValue.length >= 3) {
return;
}
const modify = [...tagValue, newTag];
setTagValue(modify);
onChange({ target: { value: modify, name } });
},
[tagValue, name, onChange]
);
🧰 Tools
🪛 GitHub Check: ESLint

[warning] 34-34: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useCallback has missing dependencies: 'name' and 'onChange'. Either include them or remove the dependency array.

Comment on lines +37 to +42
useEffect(() => {
const settings = getValues()[props.name];
if (settings) {
setTagValue(settings);
}
}, []);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Include missing dependencies in useEffect

The useEffect hook uses getValues and name, but these are not included in the dependency array. To ensure the effect runs correctly when these values change, include them in the dependency array.

Apply this diff:

-  }, []);
+  }, [getValues, name]);

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 GitHub Check: ESLint

[warning] 42-42: verifies the list of dependencies for Hooks like useEffect and similar
React Hook useEffect has missing dependencies: 'getValues' and 'props.name'. Either include them or remove the dependency array.

Comment on lines +11 to +14
checkValidity?: (
value: Array<Array<{ path: string }>>,
settings: any
) => Promise<string | true>;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Consider using a generic type parameter instead of any for better type safety.

The settings parameter using any type could lead to runtime errors. Consider using a generic type parameter to maintain type safety across different integrations.

- checkValidity?: (
-   value: Array<Array<{ path: string }>>,
-   settings: any
- ) => Promise<string | true>;
+ checkValidity?: <T>(
+   value: Array<Array<{ path: string }>>,
+   settings: T
+ ) => Promise<string | true>;
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
checkValidity?: (
value: Array<Array<{ path: string }>>,
settings: any
) => Promise<string | true>;
checkValidity?: <T>(
value: Array<Array<{ path: string }>>,
settings: T
) => Promise<string | true>;

Comment on lines +24 to +27
checkValidity?: (
value: Array<Array<{ path: string }>>,
settings: any
) => Promise<string | true>,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Apply the same generic type parameter here for consistency.

For consistency with the type definition above, apply the same generic type parameter here.

- checkValidity?: (
-   value: Array<Array<{ path: string }>>,
-   settings: any
- ) => Promise<string | true>,
+ checkValidity?: <T>(
+   value: Array<Array<{ path: string }>>,
+   settings: T
+ ) => Promise<string | true>,
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
checkValidity?: (
value: Array<Array<{ path: string }>>,
settings: any
) => Promise<string | true>,
checkValidity?: <T>(
value: Array<Array<{ path: string }>>,
settings: T
) => Promise<string | true>,

Comment on lines +223 to 231
? isStory
? `video_url=${m.url}&media_type=STORIES`
: `video_url=${m.url}&media_type=REELS`
: isStory
? `video_url=${m.url}&media_type=STORIES`
: `video_url=${m.url}&media_type=VIDEO`
: isStory
? `image_url=${m.url}&media_type=STORIES`
: `image_url=${m.url}`;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Refactor complex media type logic for better readability.

The nested ternary operations make the code hard to read and maintain. Consider extracting this logic into a separate function.

+ private getMediaType(url: string, isStory: boolean, isMultiMedia: boolean): string {
+   const isVideo = url.indexOf('.mp4') > -1;
+   if (!isVideo) {
+     return isStory ? `image_url=${url}&media_type=STORIES` : `image_url=${url}`;
+   }
+   if (isStory) {
+     return `video_url=${url}&media_type=STORIES`;
+   }
+   if (!isMultiMedia) {
+     return `video_url=${url}&media_type=REELS`;
+   }
+   return `video_url=${url}&media_type=VIDEO`;
+ }

Then use it in the code:

- const mediaType =
-   m.url.indexOf('.mp4') > -1
-     ? firstPost?.media?.length === 1
-       ? isStory
-         ? `video_url=${m.url}&media_type=STORIES`
-         : `video_url=${m.url}&media_type=REELS`
-       : isStory
-       ? `video_url=${m.url}&media_type=STORIES`
-       : `video_url=${m.url}&media_type=VIDEO`
-     : isStory
-     ? `image_url=${m.url}&media_type=STORIES`
-     : `image_url=${m.url}`;
+ const mediaType = this.getMediaType(m.url, isStory, firstPost?.media?.length > 1);

Committable suggestion skipped: line range outside the PR's diff.

Comment on lines +399 to +405
music(accessToken: string, data: { q: string }) {
return this.fetch(
`https://graph.facebook.com/v20.0/music/search?q=${encodeURIComponent(
data.q
)}&access_token=${accessToken}`
);
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add error handling to the music method.

The music method should include error handling and type safety.

- music(accessToken: string, data: { q: string }) {
-   return this.fetch(
-     `https://graph.facebook.com/v20.0/music/search?q=${encodeURIComponent(
-       data.q
-     )}&access_token=${accessToken}`
-   );
+ async music(accessToken: string, data: { q: string }): Promise<any> {
+   try {
+     const response = await this.fetch(
+       `https://graph.facebook.com/v20.0/music/search?q=${encodeURIComponent(
+         data.q
+       )}&access_token=${accessToken}`
+     );
+     return response.json();
+   } catch (error) {
+     throw new Error(`Failed to search music: ${error.message}`);
+   }
}

Committable suggestion skipped: line range outside the PR's diff.

@nevo-david nevo-david merged commit 70eebd5 into main Dec 4, 2024
7 checks passed
This was referenced Dec 14, 2024
@coderabbitai coderabbitai bot mentioned this pull request Dec 28, 2024
naruki1024 pushed a commit to naruki1024/postiz-app that referenced this pull request Jan 10, 2025
instagram stories, add collaborators, infrastructure for settings in validation
@nevo-david nevo-david deleted the feat/instagram branch January 26, 2025 10:03
@coderabbitai coderabbitai bot mentioned this pull request Feb 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants